*TimeScales()
Sets the time scale factor for each of the windows on a page.
Syntax
*TimeScales(scale_1, scale_2, …)
Application
Only relevant in the page context of report templates.
Inputs
- scale_x
- The time scale factor for window "X" on the page. The number of arguments is dependent on the number of windows.
Example
*BeginPage()                   // Page 1
        *Title("Untitled", Off)
        *Layout(10)
        *AnimationMode(Transient)
            *BeginPlot()
            *EndPlot()
            *BeginPlot()
            *EndPlot()
            *BeginPlot()
            *EndPlot()
            *BeginPlot()
            *EndPlot()
        *TimeScales(1, 2, 3, 4)
        *TimeDelays(0.1, 0, 0.2, 0)
    *EndPage()Comments
This statement is only valid in reports, not in session files.